home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / LIFE6__ / PROTO / U / EVENTSLI.H < prev    next >
Text File  |  1991-08-16  |  848b  |  30 lines

  1. /*  EventsLife6                                                             Additional event handler routines
  2.  
  3. File name:  EventsLife6.h  
  4. Function:  This module contains the extra event handler routines
  5.      These routines allow us to override events in the main loop,
  6.      and to handle unique events.
  7. /* History: 8/16/91 Original by Prototyper 3.0   */
  8.  
  9.  
  10. /* ======================================================= */
  11.  
  12. /* Handle special key combinations */
  13. Boolean HandleKey(EventRecord *myevent);
  14.  
  15. /* Special disk inserted handling */
  16. Boolean HandleDisk(EventRecord *myevent);
  17.  
  18. /* Let us into the main loop */
  19. void ApplLoop_Life6(void);
  20.  
  21. /* Filter events from the main loop */
  22. void ApplEvent_Life6(Boolean *DoIt, EventRecord *myEvent);
  23.  
  24. /* Handle our special user events */
  25. void Handle_UserEvent(UserEventRec *TheUserEvent);
  26.  
  27.  
  28. /* ======================================================= */
  29.  
  30.